RetroPie forum home
    • Recent
    • Tags
    • Popular
    • Home
    • Docs
    • Register
    • Login
    1. Home
    2. Tags
    3. retro pie
    Log in to post
    • All categories
    • G

      Is there anyway to get an Original Xbox Theme for RetroPie?

      Watching Ignoring Scheduled Pinned Locked Moved Projects and Themes xbox retro pie
      3
      0 Votes
      3 Posts
      1k Views
      herb_fargusH

      @goodfriendbob https://retropie.org.uk/docs/Creating-Your-Own-EmulationStation-Theme/

    • T

      Help pls.. in menu MAME2010 pi3

      Watching Ignoring Scheduled Pinned Locked Moved Help and Support mame2010 retro pie
      6
      0 Votes
      6 Posts
      1k Views
      mituM

      @teaw I don't have a keyboard to test, but do you have a specific reason for using Mame2010 instead of Mame2003 or AdvMame ?

    • P

      Question, I am new to this

      Watching Ignoring Scheduled Pinned Locked Moved Help and Support new at this raspbian retro pie install
      2
      0 Votes
      2 Posts
      789 Views
      dankcushionsD

      https://github.com/retropie/retropie-setup/wiki/Manual-Installation

    • U

      Problem with Pitft software installation for the Pigrrl 2

      Watching Ignoring Scheduled Pinned Locked Moved Help and Support pi 2 pigrrl 2 pitft software retro pie
      1
      0 Votes
      1 Posts
      828 Views
      No one has replied
    • E

      RetroPie Arcade Coin Acceptor Wiring [HELP]

      Watching Ignoring Scheduled Pinned Locked Moved General Discussion and Gaming coin-ops coin retro pie retro arcade
      3
      0 Votes
      3 Posts
      3k Views
      CapemanC

      Probably best to not duplicate topics or you could irk the mods.
      https://retropie.org.uk/forum/topic/12353/retropie-coin-acceptor

    • T

      Does Retropi Support PSP emulation??

      Watching Ignoring Scheduled Pinned Locked Moved Help and Support psp psp rom retro pie
      1
      0 Votes
      1 Posts
      2k Views
      No one has replied
    • P

      Detecting input devices in Raspberry Pi 0

      Watching Ignoring Scheduled Pinned Locked Moved Help and Support retropie retro pie zero pi zero raspberry pi 0
      1
      0 Votes
      1 Posts
      801 Views
      No one has replied
    • L

      Got a Pi for my birthday

      Watching Ignoring Scheduled Pinned Locked Moved Help and Support raspberry pi problem retro pie
      21
      0 Votes
      21 Posts
      6k Views
      dankcushionsD

      additionally, lr-snes9x-next is the old name for lr-snes9x2010 (i think). that was changed ages ago so you're using a quite old version of retropie. we can't really support that.

    • D

      imaging &Transferring ROMs & add emulators from Mac.

      Watching Ignoring Scheduled Pinned Locked Moved Help and Support macintosh retro pie adding emulator roms wifi config
      9
      0 Votes
      9 Posts
      3k Views
      AlexMurphyA

      @pjft MACs aren't my thing, I leave them to the GF and the young wan. Everyone I see talks about dd In fact I saw etcher get ripped to shreds on reddit by people criticising them for just over-complicating dd. Saying that, I do like a nice GUI and I have no issues with it. Straight into a zip? You could ask them to add it. They seem like they are willing to help.

    • N

      SNES Classic Build (WIP)

      Watching Ignoring Scheduled Pinned Locked Moved Projects and Themes snes classic mini super nintendo retro pie
      9
      4 Votes
      9 Posts
      4k Views
      N

      Bump for update of original post.

    • P

      Roms won't load

      Watching Ignoring Scheduled Pinned Locked Moved Help and Support roms retro pie launch issue help
      2
      0 Votes
      2 Posts
      1k Views
      mediamogulM

      @patsfanasg

      Most of the titles have ._ before them.

      When you copy files over from a Mac it makes a duplicate junk file that begins with ._. You'll ultimately want to switch to a transfer program like Cyberduck to avoid the issue. You can get rid of the junk files that are currently there by dropping to the command line (F4) or using ssh and typing:

      find /home/pi/RetroPie -name "._*" -exec rm -rf {} \;
    • B

      PSX and PPSSPP problems on retropie 4.2 ( using raspberry pi 3 B )

      Watching Ignoring Scheduled Pinned Locked Moved Help and Support psx psx emulation ppsspp retro pie klonoa
      1
      0 Votes
      1 Posts
      1k Views
      No one has replied
    • T

      Suddenly having controller issues

      Watching Ignoring Scheduled Pinned Locked Moved Help and Support controller help retro pie nes30 pro xbox 360 contro usb controller
      6
      0 Votes
      6 Posts
      2k Views
      T

      @pjft I had actually changed my hotkey for the RA menu in-game to be R/L/down/Y, which was working before, but isn't anymore. Maybe I can use the keyboard to get in and then go from there.

      I installed xboxdrv after this started, hoping it would fix the issue I was having with the 360 controller. It didn't appear to change anything.

    • M

      Need help with adding n64 texture packs.

      Watching Ignoring Scheduled Pinned Locked Moved Help and Support retro pie mupen64plus mupen64plus.cfg texture packs
      6
      0 Votes
      6 Posts
      5k Views
      L

      @hooperre Yes. I added this to the very bottom of my mupen64plus.cfg file:

      [Video-Rice] LoadHiResTextures = True
    • M

      3 button Pause Disable

      Watching Ignoring Scheduled Pinned Locked Moved Help and Support retro pie megadrive controller
      3
      0 Votes
      3 Posts
      1k Views
      M

      Created with Teensy LC works perfect apart from 3 button press simulates start

      using all emulators this happens ,

      the project

      I added a micro switch to the back of the pad to use as select
      Change pin numbers as needed
      // player 1 bank
      const int P1_A = 4;
      const int P1_B = 5;
      const int P1_C = 6;
      const int P1_LEFT = 2;
      const int P1_RIGHT = 1;
      const int P1_DOWN = 9;
      const int P1_UP = 8;
      const int P1_SELECT = 10;
      const int START_BUTTON = 7;
      unsigned long lastTime = 0;
      void setup()
      {
      pinMode(P1_A, INPUT_PULLUP);
      pinMode(P1_B, INPUT_PULLUP);
      pinMode(P1_C, INPUT_PULLUP);
      pinMode(P1_LEFT, INPUT_PULLUP);
      pinMode(P1_RIGHT, INPUT_PULLUP);
      pinMode(P1_DOWN, INPUT_PULLUP);
      pinMode(P1_UP, INPUT_PULLUP);
      pinMode(START_BUTTON, INPUT_PULLUP);
      pinMode(P1_SELECT, INPUT_PULLUP);

      lastTime = millis();
      }
      void loop()
      {
      unsigned long time = millis();
      // run at 50 Hz
      if(time - lastTime >= 20)
      {
      lastTime = time;
      // read the data of all our buttons
      // our buttons
      Joystick.button(1, 1 - digitalRead(P1_A));
      Joystick.button(2, 1 - digitalRead(P1_B));
      Joystick.button(3, 1 - digitalRead(P1_C));
      Joystick.button(4, 1 - digitalRead(START_BUTTON));
      Joystick.button(9, 1 - digitalRead(P1_SELECT ));

      // also use buttons for the axes cuz unity is a derp Joystick.button(5, 1 - digitalRead(P1_UP)); Joystick.button(6, 1 - digitalRead(P1_RIGHT)); Joystick.button(7, 1 - digitalRead(P1_DOWN)); Joystick.button(8, 1 - digitalRead(P1_LEFT));

      }
      }

    • F

      Multiple Controller Setup

      Watching Ignoring Scheduled Pinned Locked Moved Help and Support retro pie controller keyboard 4.1 raspberry pi 2b
      3
      0 Votes
      3 Posts
      2k Views
      F

      @meleu thanks for responding, I've added my different controllers now, sorry for not doing this earlier. However I don't think this is of any importance since every controller (except for my bog standard keyboard) gives the same results.

    • MsitazM

      Donkey Kong 64 Lagging camera

      Watching Ignoring Scheduled Pinned Locked Moved Help and Support donkey kong 64 retro pie raspberry pi 3 camera shuttering
      8
      0 Votes
      8 Posts
      5k Views
      P

      @msitaz I have the same issue.
      Did you solve it?

    • S

      Possible to make Custom ROM Lists?

      Watching Ignoring Scheduled Pinned Locked Moved General Discussion and Gaming rom list retro pie
      10
      0 Votes
      10 Posts
      3k Views
      columboscoatC

      @MWGemini Cheers. Might try it out on my MAME ROMs. Maybe group into years or genre.

    • T

      looking for some .svg logos, do any of the themes have these?

      Watching Ignoring Scheduled Pinned Locked Moved Help and Support svg logo theme retro pie images
      5
      0 Votes
      5 Posts
      2k Views
      T

      @lilbud said in looking for some .svg logos, do any of the themes have these?:

      @trixta You can find a lot of svgs online. Try Wikipedia, they will have franchise logos

      nice one thank you